home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_OuterBevel():
- return {
- 'Ambience': 0,
- 'Angle': 135,
- 'Bevel': 0,
- 'Color': (100,208,207),
- 'Depth': 70,
- 'Elevation': 80,
- 'Intensity': 40,
- 'Shininess': 20,
- 'Smoothness': 20,
- 'Width': 20
- }
-
- def Do(Environment):
- # Outer Bevel
- App.Do( Environment, 'OuterBevel', Preset_OuterBevel())
-
-